home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / PGM_TOOL / TPRCDR10 / MAKEFILE < prev    next >
Text File  |  1993-12-26  |  1KB  |  52 lines

  1. # Makefile for various TPRecDir TPU test programs
  2. # All programs are Copyright (c) 1993-1994 by Tony G. Papadimitriou
  3.  
  4. all            : ldir.exe \
  5.                  zapdir.exe \
  6.                  mcopy.exe \
  7.                  count \
  8.                  where \
  9.                  fd \
  10.                  exts
  11.  
  12. ldir           : ldir.exe
  13. zapdir         : zapdir.exe
  14. mcopy          : mcopy.exe
  15. count          : count.exe
  16. where          : where.exe
  17. fd             : fd.exe
  18. exts           : exts.exe
  19.  
  20. # -------------
  21.  
  22. # The following TPU is not available in source form
  23. # and this line is here only for my own use.
  24. tprecdir.tpu   : c:\tp\progs\units\tprecdir.pas
  25.   @tpc /$g- c:\tp\progs\units\tprecdir
  26.  
  27. # The following TPU is not available in source form
  28. # and this line is here only for my own use.
  29. tputils.tpu    : c:\tp\progs\units\tputils.pas
  30.   @tpc /$g- c:\tp\progs\units\tputils
  31.  
  32. ldir.exe       : ldir.pas tprecdir.tpu tputils.tpu
  33.   @tpc ldir
  34.  
  35. zapdir.exe     : zapdir.pas tprecdir.tpu tputils.tpu
  36.   @tpc zapdir
  37.  
  38. count.exe      : count.pas tprecdir.tpu tputils.tpu
  39.   @tpc count
  40.  
  41. where.exe      : where.pas tprecdir.tpu tputils.tpu
  42.   @tpc where
  43.  
  44. mcopy.exe      : mcopy.pas tprecdir.tpu tputils.tpu
  45.   @tpc mcopy
  46.  
  47. fd.exe         : fd.pas tprecdir.tpu tputils.tpu
  48.   @tpc fd
  49.  
  50. exts.exe       : exts.pas tprecdir.tpu tputils.tpu
  51.   @tpc exts
  52.